device type
Schemas
- yaml
- json
- markdown
$schema: https://json-schema.org/draft/2020-12/schema
$id: https://github.com/nqminds/CAHN/blob/main/packages/schemas/src/device_type.v.1.0.0.schema.yaml
title: device type
description: A device type
type: object
properties:
id:
description: id of the device type
type: string
name:
description: user friendly name of the device type
type: string
created_at:
description: timestamp at which device type was created in milliseconds
type: integer
required:
- id
- name
- created_at
uniqueKeys:
- id
- name
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/nqminds/CAHN/blob/main/packages/schemas/src/device_type.v.1.0.0.schema.yaml",
"title": "device type",
"description": "A device type",
"type": "object",
"properties": {
"id": {
"description": "id of the device type",
"type": "string"
},
"name": {
"description": "user friendly name of the device type",
"type": "string"
},
"created_at": {
"description": "timestamp at which device type was created in milliseconds",
"type": "integer"
}
},
"required": [
"id",
"name",
"created_at"
],
"uniqueKeys": [
"id",
"name"
]
}
Examples
- table
- json